home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et3_0-a1.lha / et3 / src / PROGENV / EtPeTool.h < prev    next >
C/C++ Source or Header  |  1992-05-13  |  665b  |  35 lines

  1. #ifndef EtPeTool_First
  2. #ifdef __GNUG__
  3. //pragma once
  4. #pragma interface
  5. #endif
  6. #define EtPeTool_First
  7.  
  8. #include "Manager.h"
  9.  
  10. class MenuBar;
  11. class SeqCollection;
  12.  
  13. //---- EtPeTool ----------------------------------------------------------------
  14.  
  15. class EtPeTool : public Manager {
  16.     static int count;
  17.     SeqCollection *keySelectItems;
  18. public:
  19.     MetaDef(EtPeTool);
  20.     EtPeTool(Manager *mp, char *name);
  21.     ~EtPeTool();
  22.     
  23.     void AddKeySelectItem(VObject *vop);
  24.     void InputKbd(Token &t);
  25.     static bool WantGrabKeyToken(Token &t, VObject *vop);
  26.  
  27.     MenuBar *DoMakeMenuBar();
  28.     Command *DoMenuCommand(int cmd);
  29.     void DoSetupMenu(Menu *);
  30.  
  31. };
  32.  
  33. #endif
  34.  
  35.